home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / FISHFACT.PAK / FSHTDLGC.CPP < prev    next >
C/C++ Source or Header  |  1997-05-06  |  965b  |  48 lines

  1. /*  Project fishfact
  2.     Borland International
  3.     Copyright ⌐ 1996. All Rights Reserved.
  4.  
  5.     SUBSYSTEM:    fishfact.exe Application
  6.     FILE:         fshtdlgc.cpp
  7.     AUTHOR:       
  8.  
  9.  
  10.     OVERVIEW
  11.     ========
  12.     Source file for implementation of fishfactTDLGClient (TDialog).
  13.  
  14. */
  15.  
  16.  
  17. #include <owl\pch.h>
  18. #pragma hdrstop
  19.  
  20. #include "ffactwin.h"
  21. #include "fshtdlgc.h"
  22.  
  23.  
  24. //{{fishfactTDLGClient Implementation}}
  25.  
  26.  
  27. //////////////////////////////////////////////////////////
  28. // fishfactTDLGClient
  29. // ==========
  30. // Construction/Destruction handling.
  31. fishfactTDLGClient::fishfactTDLGClient (TWindow *parent, TResId resId, TModule *module)
  32.     : TDialog(parent, resId, module)
  33. {
  34.     // INSERT>> Your constructor code here.
  35. }
  36.  
  37.  
  38. fishfactTDLGClient::~fishfactTDLGClient ()
  39. {
  40.     Destroy();
  41.  
  42.     // INSERT>> Your destructor code here.
  43. }
  44.  
  45. DEFINE_RESPONSE_TABLE2(fishfactTDLGClient, TDialog, TVbxEventHandler)
  46. END_RESPONSE_TABLE;
  47.  
  48.